home *** CD-ROM | disk | FTP | other *** search
/ JCSM Shareware Collection 1996 September / JCSM Shareware Collection (JCS Distribution) (September 1996).ISO / bother__ / 10860f01.ziv / TIE22.EXE / INST_NET.BAT < prev    next >
DOS Batch File  |  1994-04-21  |  4KB  |  87 lines

  1. Echo Off
  2. REM ******************************************************
  3. REM * File   : InstallN.bat
  4. REM * Author : Stephen Williams
  5. REM * Date   : 16 May 1993
  6. REM * Revised:
  7. REM * Purpose: Installation - TIE (Program & Data)
  8. REM ******************************************************
  9. if "%1" == ""    goto help
  10. if "%1" == "?"   goto help
  11. if "%1" == "A:"  goto help
  12. if "%1" == "a:"  goto help
  13. if "%1" == "B:"  goto help
  14. if "%1" == "b:"  goto help
  15. if "%1" == "A"   goto FLOP
  16. if "%1" == "a"   goto FLOP
  17. if "%1" == "B"   goto FLOP
  18. if "%1" == "b"   goto FLOP
  19.  
  20. for %%f in (C:,c:,D:,d:,E:,e:,F:,f:,G:,g:,H:,h:,I:,i:) do if %1.==%%f. goto Help
  21. for %%f in (J:,j:,K:,k:,L:,l:,M:,m:,N:,n:,O:,o:,P:,p:) do if %1.==%%f. goto Help
  22. for %%f in (Q:,q:,R:,r:,S:,s:,T:,t:,U:,u:,V:,v:,W:,w:) do if %1.==%%f. goto Help
  23. for %%f in (X:,x:,Y:,y:,Z:,z:)                         do if %1.==%%f. goto Help
  24.  
  25. REM **************************
  26. REM HARD DISK INSTALLATION
  27. REM **************************
  28. if not exist %1:\nul goto help
  29. CLS
  30. Echo **** Teamwork Information Exchange (TIE) Installation  ****
  31. Echo *                                                         *
  32. Echo *    Installing Program & Data Files on %1:\TIE            *
  33. Echo *                                                         *
  34. Echo *                                                         *
  35. Echo \/                                                        \/
  36. TIE_EXE %1:\TIE
  37. TIE_DAT %1:\TIE
  38. if not exist spelldic.exe goto nospell
  39. SPELLDIC %1:\TIE
  40. :NOSPELL
  41. %1:
  42. CD \TIE
  43. Echo *** TIE Successfully Installed on %1:\TIE
  44. Echo ***
  45. Echo *** To run program type "TIE"
  46. goto End
  47.  
  48. REM ************************************
  49. REM FLOPPY DISK INSTALLATION
  50. REM ************************************
  51. :FLOP
  52. REM TIE must be Installed on a Hard Disk.
  53. REM
  54. REM *****************************
  55. REM Help For TIE INSTALLATION
  56. REM *****************************
  57. :Help
  58. Cls
  59. Echo +----------------------------------------------------------------+
  60. Echo !            Teamwork Information Exchange (TIE) 2.2             !
  61. Echo !                                                                !
  62. Echo !                    Installation Help                           !
  63. Echo !                                                                !
  64. Echo !         TIE must be installed on a HARD DISK drive             !
  65. Echo !                                                                !
  66. Echo ! The Inst_NET program decompresses program, and data files and  !
  67. Echo ! copies them to subdirectory \TIE on the designated drive. If   !
  68. Echo ! \TIE does not exist on the designated hard disk, it will be    !
  69. Echo ! created for you.                                               !
  70. Echo !                                                                !
  71. Echo ! Syntax for the command is:  INST_NET d                         !
  72. Echo !        where "d" is the hard disk drive letter where you want  !
  73. Echo !        the program installed.                                  !
  74. Echo !                                                                !
  75. Echo ! Examples:  INST_NET C   (Note no colon is typed)               !
  76. Echo !            INST_NET D                                          !
  77. Echo !            etc.                                                !
  78. Echo +----------------------------------------------------------------+
  79. Echo *************    Program not installed.     **********************
  80. goto bad_end
  81. REM ************************
  82. REM End Of TIE Installation
  83. REM ************************
  84. :end
  85. Echo =-=-=-=-=-=-=-=-=-=- INSTALLATION COMPLETE -=-=-=-=-=-=-=-=-=-=-=-=
  86. :bad_end
  87.